home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
gnustuff
/
tos
/
othergnu
/
texinf~1.zoo
/
texinfo.st
/
info
/
fakemint.h
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-04-16
|
391 b
|
25 lines
/*
* Dummy functions which are needed when we are not compiling
* with MiNT libraries. For MiNT they are "real" enough.
*/
#ifndef __MINT__
#include <compiler.h>
long sigsetmask __PROTO((long mask));
long sigblock __PROTO((long mask));
#define sigmask(sig) (1L << (sig))
long
sigsetmask(long mask)
{
return mask;
}
long
sigblock(long mask)
{
return mask;
}
#endif /* __MINT__ */